home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_HostToNetShort.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  120 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.01.27.16.37.18;  author mendel;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.11.21.09.10.11;  author mendel;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.52.19;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Formed from net.c of src/lib/old/net.c.
  27. @
  28.  
  29.  
  30. 1.2
  31. log
  32. @Removed newline from rcsid string.
  33. @
  34. text
  35. @/* 
  36.  * Net_HostToNetShort.c --
  37.  *
  38.  *    Convert a short integer from host to network byte ordering.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * All rights reserved.
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  */
  50.  
  51. #ifndef lint
  52. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetShort.c,v 1.1 88/11/21 09:10:11 mendel Exp Locker: mendel $ SPRITE (Berkeley)";
  53. #endif not lint
  54.  
  55.  
  56. #include "machparam.h"
  57.  
  58. /* 
  59.  *----------------------------------------------------------------------
  60.  *
  61.  * Net_HostToNetShort --
  62.  *
  63.  *    Convert a short integer in host byte order to an short integer in 
  64.  *    network byte order.
  65.  *
  66.  * Results:
  67.  *    The short integer in network byte order.
  68.  *
  69.  * Side effects:
  70.  *    None.
  71.  *
  72.  *----------------------------------------------------------------------
  73.  */
  74.  
  75. unsigned short 
  76. Net_HostToNetShort(shortInt)
  77.     unsigned short shortInt;     /* A short int in Host byte order. */
  78. {
  79.  
  80. #if BYTE_ORDER == LITTLE_ENDIAN
  81.     union swab {
  82.         unsigned short s;
  83.         unsigned char  c[2];
  84.     } in, out;
  85.  
  86.     in.s = shortInt;
  87.     out.c[0] = in.c[1];
  88.     out.c[1] = in.c[0];
  89.  
  90.         return (out.s);
  91. #else
  92.     return(shortInt);
  93. #endif
  94. }
  95.  
  96. @
  97.  
  98.  
  99. 1.2.1.1
  100. log
  101. @Initial branch for Sprite server.
  102. @
  103. text
  104. @d18 1
  105. a18 1
  106. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetShort.c,v 1.2 89/01/27 16:37:18 mendel Exp $ SPRITE (Berkeley)";
  107. @
  108.  
  109.  
  110. 1.1
  111. log
  112. @Initial revision
  113. @
  114. text
  115. @d18 1
  116. a18 2
  117. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE
  118.  (Berkeley)";
  119. @
  120.